Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
cf-style-container
Advanced tools
Cloudflare Style Container
Set of high order components and other helpers for fela based applications.
$ npm install cf-style-container
We proxy/alias some useful functions from fela without changing their behaviour. See the original documentation for more details. We wrap all Fela APIs so we can eventually switch Fela to a different CSS in JS lib if ever needed.
Very similar to createComponent from react-fela. However, it automatically adds PropTypes from [type]
in case that it is a React Component.
You should use this HOC every time when you want to use Fela in your component. This is a primary way how to style React components.
import React from 'react';
import PropTypes from 'prop-types';
import { createComponent } from 'cf-style-container';
const styles = ({ theme, size }) => ({
fontWeight: theme[`fontWeight${size}`],
fontSize: theme[`fontSize${size}`],
lineHeight: theme[`lineHeight${size}`],
marginTop: theme[`marginTop${size}`]
});
const Heading = ({ size, className, children }) => {
const tagName = 'h' + size;
return React.createElement(tagName, { className }, children);
};
Heading.propTypes = {
size: PropTypes.oneOf([1, 2, 3, 4, 5, 6]).isRequired,
className: PropTypes.string.isRequired,
children: PropTypes.node
};
export default createComponent(styles, Heading);
Useful when you need multiple classNames (and rules) in one component.
import React from 'react';
import PropTypes from 'prop-types';
import { createComponentStyles } from 'cf-style-container';
const mainStyles = ({ theme }) => ({
margin: theme.main.margin,
padding: theme.main.padding,
});
const legendStyles = ({ theme }) => ({
padding: theme.legend.padding,
marginBottom: theme.legend.marginBottom,
borderBottom: theme.legend.borderBottom,
});
const FormFieldset = ({ legend, styles }) => (
<fieldset className={styles.mainStyles}>
<legend className={styles.legendStyles}>
{legend}
</legend>
</fieldset>
);
FormFieldset.propTypes = {
styles: PropTypes.object.isRequired,
legend: PropTypes.string.isRequired
};
export default createComponentStyles({ mainStyles, legendStyles }, FormFieldset);
Notice that rules are now an object. The names you chose will be used for classNames
accessible as styles.mainStyles
and styles.legendStyles
in this case.
A HOC that ties a Fela component with the theme (adds the theme to its context). The themes can be functions that takes a baseTheme and returns a new theme, or just an object.
import HeadingUnstyled from './Heading';
import HeadingTheme from './HeadingTheme';
import { applyTheme } from 'cf-style-container';
// overrides HeadingTheme fontWeight1
const CustomTheme = () => { fontWeight1: 600 };
const Heading = applyTheme(HeadingUnstyled, HeadingTheme, CustomTheme);
// themed component
<Heading />
A HOC that passes the current theme from context into the prop theme
. This is useful
when you need to access the theme without using createComponent
. In other words,
you can't create a new styled component with it.
import { withTheme } from 'cf-style-container';
const MyComponent = ({ theme }) => <div>Color: {theme.colors.hail}</div>
export default withTheme(MyComponent);
A HOC that passes the renderer from context into the prop renderer
. This is useful
for third party integration when you need to generate a class name and you can't create
a new styled component with it.
import { withRenderer } from 'cf-style-container';
const MyComponent = ({ theme }) => {
const styles = props => ({
fontSize: props.fontSize,
color: 'red'
});
const className = renderer.renderRule(styles, { fontSize: 12 })
return (<div>Class name: {className}</div>);
}
export default withRenderer(MyComponent);
A HOC that applies a string of static styles to a component using fela's renderStatic. Useful for integration with older libraries that require side loading of a static CSS block.
Accepts a function or a string. If a function is provided, the baseTheme will be provided to the function.
import { applyStaticStyles } from 'cf-style-container';
const staticStyles = '.purple-component { background-color: purple }';
// OR
// const staticStyles = baseTheme => `.purple-component{background-color: ${baseTheme.purple} }`
const MyComponent = () => <div className='purple-component' />;
export default applyStaticStyles(staticStyles, MyComponent);
FAQs
Cloudflare Style Container
The npm package cf-style-container receives a total of 46 weekly downloads. As such, cf-style-container popularity was classified as not popular.
We found that cf-style-container demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 23 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.